Skip to content

Instantly share code, notes, and snippets.

CREATING syn flood and web work load:
%hping3 -I p1p1 -p 8701 -S -V --flood 192.168.50.1
%wrk -t8 -c1000 -d10s http://192.168.50.1:8701
DRIVER VERSION
%route add default gw a.b.31.254 em1
%ethtool -i p1p1
CPU
Set the cpupower to the approriate governor profile.

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

What is this?

This is a collection of free e-books about Artificial Intelligence(Machine Learning, Planning) and Data Science etc. .

keywords:

ML, ebook, ebooks, books, book, machine learning, statistics, free

Books

Probabilistic Machine Learning: An Introduction. 2022

@jelenv
jelenv / Amp-review.md
Created June 27, 2026 21:30
amp-review — a deterministic Amp review skill + invoker plugin

amp-review — a deterministic Amp review skill + invoker plugin

A nice, quick way to launch precise amp review code reviews. Created for Amp.

Files

  • SKILL.md — the skill body. Drop it into any agent skills directory (e.g. ~/.config/agents/skills/amp-review/SKILL.md).
  • skill-invoker.ts — an Amp plugin that lets you trigger a skill from the command palette (or via the $skill-name token in a message). It injects an explicit prompt to properly nudge the agent to invoke the selected skill(s). Tested in deep and glm agent modes.

Why a skill + plugin instead of plain prose?

@brucebentley
brucebentley / iOS Shortcuts Catalog.md
Last active June 29, 2026 10:32
This is a public resource designed to help people get started with Siri Shortcuts & the Shortcuts app. It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.

Bruce's iOS Shortcut Catalog

Hello and welcome to my Shortcuts Catalog!

This is a public resource designed to help people get started with Siri Shortcuts and the Shortcuts app.

It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.

Enjoy!

# -*- coding: utf-8 -*-
"""
draw_bbox_clip_dtm.py
=====================
Da incollare nella Console Python di QGIS.
Attiva uno strumento sul map canvas: si traccia un rettangolo trascinando il
mouse, e al rilascio viene scaricato SOLO il DTM contenuto nella bbox disegnata,
via GDAL /vsicurl/. Il ritaglio viene poi caricato come layer nel progetto.
@fofr
fofr / SKILL.md
Last active June 29, 2026 10:22
An agent skill for writing in the GOV.UK style
name govuk-style
description Write and edit in GOV.UK / GDS house style — plain English, active voice, front-loaded content, sentence case, and no bold or italics for emphasis. Use when writing or editing reports, research write-ups, guidance, documentation, summaries, or any prose where clarity and accessibility matter.
user-invokable true
args
name description required
target
The document or text to write or rewrite in GOV.UK style (optional)
false
@dideler
dideler / bot.rb
Last active June 29, 2026 10:21
Sending a notification message to Telegram using its HTTP API via cURL
# Use this script to test that your Telegram bot works.
#
# Install the dependency
#
# $ gem install telegram_bot
#
# Run the bot
#
# $ ruby bot.rb
#
@wzulfikar
wzulfikar / docker-ps-vertical
Last active June 29, 2026 10:20
vertical format for docker ps
export FORMAT="ID\t{{.ID}}\nNAME\t{{.Names}}\nIMAGE\t{{.Image}}\nPORTS\t{{.Ports}}\nCOMMAND\t{{.Command}}\nCREATED\t{{.CreatedAt}}\nSTATUS\t{{.Status}}\n"
// usage:
docker ps --format="$FORMAT"